get_readme_src
#!/usr/bin/env php
<?php
// I use four backticks in the readme to wrap the output of this script. So I replace those 4 backticks with 3 backticks here. Without this workaround, the README.src.md's code blocks would break the code block displaying the README.src.md's contents
$src = file_get_contents(dirname(__DIR__).'/docsrc/README.src.md');
$src = str_replace('````', '```', $src);
echo $src;